home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / kubuntu-docs.prerm < prev    next >
Text File  |  2008-10-17  |  398b  |  17 lines

  1. #! /bin/sh
  2. set -e
  3.  
  4.  
  5.  
  6. case "$1" in
  7.   remove|deconfigure|failed-upgrade)
  8.     if which install-docs >/dev/null 2>&1; then
  9.       rm -rf /usr/share/ubuntu-artwork/home/images
  10.       rm -rf /usr/share/ubuntu-artwork/home/kubuntu.css
  11.       rm -rf /usr/share/ubuntu-artwork/home/locales-kubuntu
  12.       install-docs -r /usr/share/doc-base/kubuntu-systemdocs
  13.       rm -rf /usr/share/doc/kde4/HTML/en/kubuntu
  14.     fi
  15.   ;;
  16. esac
  17.